home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / falcon / programm.ing / nt_dsp1.lzh / NT_DSP1.MSA / FFT / FFTR2ET.ASM < prev    next >
Assembly Source File  |  1990-01-17  |  1KB  |  43 lines

  1. ;
  2. ; This program originally available on the Motorola DSP bulletin board.
  3. ; It is provided under a DISCLAMER OF WARRANTY available from
  4. ; Motorola DSP Operation, 6501 Wm. Cannon Drive W., Austin, Tx., 78735.
  5. ; 1024-Point, 3.39ms Non-In-Place FFT. (test program) 
  6. ; Last Update 03 Feb 87   Version 1.0
  7. ;
  8. fftr2et ident   1,0
  9.         page    132,60
  10.         opt     nomd,nomex,loc,nocex,mu
  11.  
  12.         include 'dsplib:sincos'
  13.         include 'dsplib:fftr2e'
  14.  
  15. ;
  16. ; Main program to call the FFTR2E macro
  17. ;       Argument list
  18. ;
  19. ;       1024 point complex FFT
  20. ;       External data starts at address $400
  21. ;       Internal data starts at address 0
  22. ;       Coefficient table starts at address $800
  23. ;
  24. ; Latest revision - 3-Feb-87
  25.  
  26. reset   equ     0
  27. start   equ     $100
  28. points  equ     1024
  29. data    equ     $400
  30. coef    equ     $800
  31.  
  32.         sincos  points,coef
  33.  
  34.         opt     mex
  35.         org     p:reset
  36.         jmp     start
  37.  
  38.         org     p:start
  39.         fftr2e  data,coef
  40.         end
  41.